home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
prog
/
prog914.arj
/
WALLPAPR.BAS
< prev
Wrap
BASIC Source File
|
1994-01-27
|
673b
|
20 lines
10 REM *** START *** WALLPAPR.BAS / 01-27-1994 / 08:43:20
20 REM *** This BASIC program was generated by PROGRAM.EXE
30 REM *** A shareware program written by IRA F. KAVALER.
40 KEY OFF: CLS: REM *** Turn off F-key labels & clear screen.
45 PRINT "Enter the room size in feet."
50 INPUT "What is the width of the room";W
60 INPUT "What is the length of the room";L
70 LET P=2*L+2*W
80 INPUT "What is the ceiling height";H
90 LET A=P*H
100 LET N=A/30
110 INPUT "How many doors are there";ND
120 INPUT "How many windows are there";NW
130 LET OP=ND+NW
140 LET SR=N-OP/2
145 PRINT
150 PRINT "You will need";SR
160 PRINT "single rolls of wallpaper."
170 END